home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TMagicMacros Delphi / TMM2_D4T / MACRO_RE.DPR < prev    next >
Encoding:
Text File  |  1998-10-19  |  222 b   |  14 lines

  1. program macro_rec;
  2.  
  3. uses
  4.   Forms,
  5.   macro_rec_f in 'macro_rec_f.pas' {RecorderForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TRecorderForm, RecorderForm);
  12.   Application.Run;
  13. end.
  14.